home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / dev / mui / urltext.lha / Urltext / Sources / mcc / class.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-01-25  |  1.3 KB  |  50 lines

  1. #ifndef _CLASS_H
  2. #define _CLASS_H
  3.  
  4. #include <proto/exec.h>
  5. #include <proto/dos.h>
  6. #include <proto/utility.h>
  7. #include <proto/intuition.h>
  8. #include <proto/muimaster.h>
  9. #include <proto/openurl.h>
  10. #include <proto/graphics.h>
  11. #include <proto/locale.h>
  12. #include <proto/diskfont.h>
  13. #include <proto/iffparse.h>
  14.  
  15. #include <clib/alib_protos.h>
  16. #include <clib/debug_protos.h>
  17.  
  18. #include <mui/muiundoc.h>
  19. #include <dos.h>
  20. #include <string.h>
  21.  
  22. #include "Urltext_mcc_private.h"
  23. #include "msg.h"
  24. #include "base.h"
  25.  
  26. /***********************************************************************/
  27.  
  28. #define SysBase         (UrltextBase->sysBase)
  29. #define DOSBase         (UrltextBase->dosBase)
  30. #define IntuitionBase   (UrltextBase->intuitionBase)
  31. #define UtilityBase     (UrltextBase->utilityBase)
  32. #define LocaleBase      (UrltextBase->localeBase)
  33. #define GfxBase         (UrltextBase->gfxBase)
  34. #define OpenURLBase     (UrltextBase->openURLBase)
  35. #define MUIMasterBase   (UrltextBase->muiMasterBase)
  36. #define IFFParseBase    (UrltextBase->iFFParseBase)
  37. #define DiskfontBase    (UrltextBase->diskFontBase)
  38.  
  39. extern struct UrltextBase *UrltextBase;
  40. extern char libName[];
  41. extern char author[];
  42.  
  43. /***********************************************************************/
  44.  
  45. #include "class_protos.h"
  46.  
  47. /***********************************************************************/
  48.  
  49. #endif /* _CLASS_H */
  50.